home *** CD-ROM | disk | FTP | other *** search
/ Internet 1996 World Exposition / park.org.s3.amazonaws.com.7z / park.org.s3.amazonaws.com / Japan / Panasonic- / funcity / paris / wave / MAP052J.dir / 00157_INQ go.ls < prev    next >
Encoding:
Text File  |  2017-09-21  |  368 b   |  19 lines

  1. on mouseDown
  2.   if length(field "Name") = 0 then
  3.     alert("Error: Illegal Nickname")
  4.     go("Name Chk")
  5.     abort()
  6.   end if
  7.   if length(field "Name") > 20 then
  8.     alert("Error: Illegal Nickname")
  9.     go("Name Chk")
  10.     abort()
  11.   end if
  12.   if length(field "Pass") > 10 then
  13.     alert("Error: Illegal Password")
  14.     go("Name Chk")
  15.     abort()
  16.   end if
  17.   go("INQ.")
  18. end
  19.